home *** CD-ROM | disk | FTP | other *** search
/ Internet 53 / INTERNET53.iso / pc / software / windows / building / coldfusion studio evaluation / data1.cab / CFS_Wizards / CFML / Ldap.vtm < prev    next >
Encoding:
Text File  |  1998-10-08  |  2.9 KB  |  83 lines

  1. <WIZARD name="LdapWizard" caption="LDAP Directory Viewer Wizard" image="..\\images\\wizardoutput.bmp">
  2.  
  3. <!--- wizard parameters --->
  4. <PARAM name="ApplicationName" value="" required="yes">
  5.  
  6. <PARAM name="ServerName" value="" required="yes">
  7. <PARAM name="ServerPort" value="389">
  8. <PARAM name="Timeout" value="20">
  9. <PARAM name="Username" value="">
  10. <PARAM name="Password" value="">
  11. <PARAM name="Root" value="" required="yes">
  12. <PARAM name="FirstInDN" value="" required="yes">
  13. <PARAM name="ObjectClass" value="" required="yes">
  14. <PARAM name="Attributes" value="" required="yes">
  15.  
  16.  
  17.  
  18. <TEMPLATE
  19.   name="Ldap_LdapView.wml"
  20.   outputFile="$${SafeApplicationName}_LdapView.cfm"
  21.   outputPath="$${Location}"
  22.   description="The main page of the LDAP directory viewer. It displays the entry attributes."
  23. >
  24. <TEMPLATE
  25.   name="Ldap_LdapEdit.wml"
  26.   outputFile="$${SafeApplicationName}_LdapEdit.cfm"
  27.   outputPath="$${Location}"
  28.   description="The edit page of the LDAP directory viewer. This page allows edit existing and add new entries in the directory."
  29. >
  30. <TEMPLATE
  31.   name="Ldap_LdapAction.wml"
  32.   outputFile="$${SafeApplicationName}_LdapAction.cfm"
  33.   outputPath="$${Location}"
  34.   description="The action template handles the form submissions from other pages of LDAP directory viewer."
  35. >
  36.  
  37.  
  38. <!-------------- Enter application settings ---------------------->
  39. <PAGE name="Page1" caption="LDAP Directory Viewer" image="..\\images\\Main.bmp">
  40.  
  41.     <INPUT name="editApplicationName" param="ApplicationName" required="yes"
  42.         validationMsg="You cannot leave the application name field blank">
  43.  
  44.     <INPUT name="editLocation" param="Location"    required="yes"
  45.         validationMsg="You cannot leave the location field blank">
  46.  
  47. </PAGE>
  48.  
  49.  
  50.  
  51. <!----------------- Enter LDAP settings --------------------->
  52. <PAGE name="Page7" caption="Directory Server" image="..\\images\\SelectData.bmp">
  53.  
  54.     <INPUT name="editServerName" param="ServerName" required="yes"
  55.         validationMsg="You cannot leave the server name field blank">
  56.  
  57.     <INPUT name="editServerPort" param="ServerPort">
  58.     <INPUT name="editTimeout" param="Timeout">
  59.     <INPUT name="editUsername" param="Username">
  60.     <INPUT name="editPassword" param="Password">
  61.  
  62. </PAGE>
  63.  
  64.  
  65. <!----------------- Enter entry settings --------------------->
  66. <PAGE name="Page7a" caption="Directory Entries" image="..\\images\\SelectTable.bmp">
  67.  
  68.     <INPUT name="editRoot" param="Root" required="yes"
  69.         validationMsg="You cannot leave the Root DN field blank">
  70.  
  71.     <INPUT name="editFirstInDN" param="FirstInDN" required="yes"
  72.         validationMsg="You cannot leave the 'First in DN' field blank">
  73.  
  74.     <INPUT name="editObjectClass" param="ObjectClass" required="yes"
  75.         validationMsg="You cannot leave the Object Class field blank">
  76.  
  77.     <INPUT name="editAttributes" param="Attributes" required="yes"
  78.         validationMsg="You cannot leave the Attributes field blank">
  79.  
  80. </PAGE>
  81.  
  82.  
  83. </WIZARD>